All Questions
Tagged with assemblyshell-script
3 questions
0votes
1answer
51views
Why does assembler called from script not create a certain file when run from crontab?
I'm using this script to build and package some applications I developed. Full content of the script is listed at the end. It is called by this crontab entry: 50 23 * * * nice $HOME/update-dl-wwwecm $...
4votes
1answer
2kviews
How to disassembly multiple functions using Linux utility objdump?
After a program is compiled and the binary file is generated, we can use objdump to disassemble the binary file and extract the assembly code and a lot of information. However, using -j .text with ...
2votes
1answer
2kviews
How can we perform an arithmetic operation on a register using GDB? [closed]
I want to inject a bit-flip fault into a running program. For this purpose, I'm using gdb to insert a breakpoint into the target program and then flipping a single bit in a random-selected register. ...